# HSV COBOL Makefile

# GnuCOBOL compiler
COBC = cobc
COBFLAGS = -x -free

all: test

test: hsv.cob
	$(COBC) $(COBFLAGS) -o test hsv.cob

run: test
	./test

clean:
	rm -f test *.o

.PHONY: all run clean
